home *** CD-ROM | disk | FTP | other *** search
- The DDE commands of the client are:
-
- Connect with the following information:
-
- APPLICATION: FMCLIENT
- TOPIC: SENDFAX
-
-
- Commands are (use DDEPoke):
-
- : This adds a recipient to the recipient list
- ITEM: ADD
- DATA: to|company|faxnumber
-
- e.g. ( in word basic )
- DDEPoke ( Channel, "ADD", "Andrei|GFI FAX & VOICE|(0356)661072" )
-
- ---------------
-
- : This sets the schedule time ( Current time + minutes specified )
- ITEM: SCHEDULE
- DATA: minutes
-
- e.g. ( in word basic )
-
- This sends the fax in one hour from now..
- DDEPoke ( Channel, "SCHEDULE", "60" )
-
- This sends the fax in 10 minutes from now..
- DDEPoke ( Channel, "SCHEDULE", "10" )
-
- This sends the fax in 124 minutes from now..
- DDEPoke ( Channel, "SCHEDULE", "124" )
-
- ---------------
-
- : This send the fax with the information it contains
- ITEM: SEND
- DATA: Two switches Send in highresolution and Send Cover page
-
- e.g. ( in word basic )
-
- This sends with a cover page and in high resolution
- DDEPoke ( Channel, "SEND", "00" )
-
- This sends with a cover page and in normal resolution
- DDEPoke ( Channel, "SEND", "01" )
-
- This sends without a cover page and in high resolution
- DDEPoke ( Channel, "SEND", "10" )
-
- This sends without a cover page and in normal resolution
- DDEPoke ( Channel, "SEND", "00" )
-